home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
-
- Dumps.c
-
- A starter main file for writing programs with the
- THINK Class Library
-
- Copyright © 1990 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "duApp.h"
-
-
- void main()
-
- {
- duApp *dumpsApp;
-
- dumpsApp = new duApp;
-
- dumpsApp->IduApp();
- dumpsApp->Run();
- dumpsApp->Exit();
- }
-